home *** CD-ROM | disk | FTP | other *** search
- '* EXAMPLE.BAS
- '* How to use the SOS-ENGINE with BASIC
- '*
- '* Be sure to add SOSFUNC to your link line
- '* Example: LINK example sosfunc,,,,
-
-
- DEFINT A-Z
-
-
- CALL SeOnLog 'Turn on logging
- CALL SeOffPntr 'Turn off file pointer logging
- CALL SeOffMem 'Turn off memory access logging
- CALL SeOffWrite 'Turn off file write logging
-
- PRINT
- PRINT "Logging activated."
- PRINT "File pointer movement logging de-activated."
- PRINT "Memory access logging de-activated."
- PRINT "File write logging de-activated."
-
- END